/* IMPORT FONTS GOOGLE*/

@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap");

/* GLOBAL */
*,
html,
body {
  margin: 0;
  padding: 0;
}

html,
body {
  background-color: var(--bg-primary);
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --text-primary: #f0f0f5;
  --accent-primary: #8b5cf6;
  --accent-secondary: #3b82f6;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Outfit;
}

span.font-jet {
  font-family: JetBrains Mono !important;
}


#wpadminbar{
    position: absolute;
    bottom: 0;
    left: 0;
    display: none;
}

iframe{
    max-width: 600px;
}


p,
button,
a,
li {
  font-family: Outfit;
}

a:hover {
  opacity: 0.5;
}

section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 0;
}

/*
======================
FONTS
======================
*/

.font-size-60 {
  font-size: 60px;
  line-height: 60px;
  letter-spacing: -2.5px;
  font-weight: 900;
}

.font-size-48 {
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -1px;
  font-weight: 900;
}

.font-size-36 {
  font-size: 36px;
  line-height: 48px;
  letter-spacing: -1px;
}

.font-size-30 {
  font-size: 30px;
  line-height: 36px;
  letter-spacing: -0.5px;
}

.font-size-24 {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.5px;
}

.font-size-20 {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.5px;
}

.font-size-16 {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.5px;
}

.font-size-18 {
  font-size: 18px;
  line-height: 24px;
}

.font-size-14 {
  font-size: 14px;
  line-height: 20px;
}

.font-size-12 {
  font-size: 12px;
  line-height: 18px;
}

.font-size-10 {
  font-size: 10px;
  line-height: 16px;
}

.font-size-8 {
  font-size: 8px;
  line-height: 12px;
}

/*
======================
CORES
======================
*/

.color-purple {
  color: #a855f7;
}

.color-58-90-72 {
  color: rgb(58, 90, 72);
}

.color-5a8a6e {
  color: #5a8a6e;
}

.color-42-74-56 {
  color: rgb(42, 74, 56);
}

.color-90-122-138 {
  color: rgb(90, 122, 138);
}

.color-90-138-110 {
  color: rgb(90, 138, 110);
}

.color-strong-green {
  color: rgb(0, 255, 136);
}

.color-106-138-120 {
  color: rgb(106, 138, 120);
}

.color-138-106-106 {
  color: rgb(138, 106, 106);
}

.color-255-68-68 {
  color: rgb(255, 68, 68);
}

.color-122-138-158 {
  color: rgb(122, 138, 158);
}

.color-c8e8d8 {
  color: #c8e8d8;
}

.color-138-170-152 {
  color: rgb(138, 170, 152);
}

.color-ffaa00 {
  color: #ffaa00;
}

.color-fff-60 {
  color: #fff;
  opacity: 0.6;
}

.color-red {
  color: #ff4444;
}

.color-fff {
  color: #fff;
}

.color-9a8aaa {
  color: #9a8aaa;
}

.color-a855f7 {
  color: #a855f7;
}

.color-5a7a8a {
  color: #5a7a8a;
}

.color-7a8a9e {
  color: #7a8a9e;
}

.color-10b981,
.color-green {
  color: #10b981;
}

/*
======================
ESTRUTURA
======================
*/

.display-flex {
  display: flex;
}

.flex-direction-column {
  flex-direction: column;
}

.align-items-center {
  align-items: center;
}

.align-items-flex-start {
  align-items: flex-start;
}

.align-items-flex-end {
  align-items: flex-end;
}

.justify-content-center {
  justify-content: center;
}

@media (max-width: 1000px) {
	.column-onmobile{
		flex-direction: column
	}
	.column-onmobile a{
		width: 100%;
		max-width: calc(100% - 48px)
	}
	
}


.gap-2 {
  gap: 2px;
}

.gap-4 {
  gap: 4px;
}

.gap-8 {
  gap: 8px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.gap-24 {
  gap: 24px;
}

.gap-32 {
  gap: 32px;
}

.gap-36 {
  gap: 36px;
}

.gap-48 {
  gap: 48px;
}

/*
======================
FONTES
======================
*/

.font-outfit {
  font-family: Outfit !important;
}

.font-jet {
  font-family: JetBrains Mono !important;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 600;
}

.font-bold {
  font-weight: 800;
}

/*
======================
HEADER
======================
*/

header {
  background: rgba(13, 13, 23, 0.085);
  backdrop-filter: blur(4px);
  border-bottom: solid 1px rgba(0, 255, 136, 0.08);
  transition-duration: 300ms;
  width: 100%;
  z-index: 50;
  position: absolute;
  top: 0;
  left: 0;
}

header div {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 80rem;
  display: flex;
}

header div img {
  width: 50px;
}

header div nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

header div nav a {
  color: #8a7a98;
  font-weight: 500;
  font-size: 14px;
}

@media (max-width: 1000px) {
  header div nav {
    display: none;
  }
}

header .cta {
  background: rgb(168, 85, 247);
  color: rgb(13, 13, 23);
  font-family: Outfit, Outfit, sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;

  line-height: 1.25rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  border-radius: 0.5rem;
}
/*
======================
HERO
======================
*/

.hero-section-oai {
  padding-top: calc(96px + 64px);
  position: relative;
  background: linear-gradient(
    135deg,
    #000000 0%,
    rgba(132, 0, 255, 0.185) 100%
  );
  overflow: hidden;
}

.hero-section-oai::before {
  content: "";
  position: absolute;
  inset: 0;

  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.15' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");

  opacity: 0.9; /* ajusta aqui */
  z-index: 0;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.absulute-animation-1 {
  position: absolute;
  width: 400px;
  height: 400px;

  background: radial-gradient(
    circle at 30% 30%,
    rgba(168, 85, 247, 1),
    rgba(168, 85, 247, 1),
    rgba(168, 85, 247, 1)
  );

  filter: blur(80px);
  opacity: 0.6;

  border-radius: 50% 60% 40% 70% / 60% 40% 70% 50%; /* forma orgânica */
  mix-blend-mode: overlay;

  top: -200px;
  right: 0;

  animation:
    floatMove 12s ease-in-out infinite,
    morphShape 10s ease-in-out infinite,
    pulseGlow 6s ease-in-out infinite;
}

.absulute-animation-2 {
  position: absolute;
  width: 400px;
  height: 400px;

  background: radial-gradient(
    circle at 30% 30%,
    rgba(168, 85, 247, 1),
    rgba(168, 85, 247, 1),
    rgba(168, 85, 247, 1)
  );

  filter: blur(80px);
  opacity: 1;

  border-radius: 50% 60% 40% 70% / 60% 40% 70% 50%; /* forma orgânica */
  mix-blend-mode: overlay;

  bottom: -200px;
  left: 0;

  animation:
    floatMove 12s ease-in-out infinite,
    morphShape 10s ease-in-out infinite,
    pulseGlow 6s ease-in-out infinite;
}

.purple-aurea {
  position: absolute;
  width: 100px;
  height: 100px;

  background: radial-gradient(
    circle at 30% 30%,
    rgba(168, 85, 247, 1),
    rgb(99, 39, 155),
    rgb(255, 255, 255)
  );

  z-index: 9999;

  filter: blur(0px);

  border-radius: 50% 60% 40% 70% / 60% 40% 70% 50%; /* forma orgânica */

  top: 0;
  right: 0;

  animation:
    floatMove 12s ease-in-out infinite,
    morphShape 10s ease-in-out infinite,
    pulseGlow 6s ease-in-out infinite;
}

/* movimento suave (flutuando) */
@keyframes floatMove {
  0% {
    transform: translate(0px, 0px) scale(1);
  }
  25% {
    transform: translate(40px, -30px) scale(1.05);
  }
  50% {
    transform: translate(-30px, 40px) scale(0.95);
  }
  75% {
    transform: translate(30px, 20px) scale(1.02);
  }
  100% {
    transform: translate(0px, 0px) scale(1);
  }
}

/* deformação orgânica */
@keyframes morphShape {
  0% {
    border-radius: 50% 60% 40% 70% / 60% 40% 70% 50%;
  }
  50% {
    border-radius: 60% 40% 70% 50% / 50% 70% 40% 60%;
  }
  100% {
    border-radius: 50% 60% 40% 70% / 60% 40% 70% 50%;
  }
}

/* "piscar" suave (respiração) */
@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.5;
    filter: blur(80px);
  }
  50% {
    opacity: 0.8;
    filter: blur(100px);
  }
}

.content-hero-oai {
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
}

.col1-hero-oai {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 24px;
  text-align: left;
  position: relative;
}

.badge-purple-oai {
  display: flex;
  align-items: center;
  gap: 16px;

  max-width: max-content;

  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 100px;

  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;

  color: rgb(168, 85, 247);
  font-family:
    JetBrains Mono,
    monospace !important;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1rem;
}

.badge-purple-oai div {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  position: relative;

  box-shadow: 0 0 8px #22c55e;

  animation: pulse 2s infinite ease-in-out;
}

/* aura externa */
.badge-purple-oai div::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #22c55e;
  opacity: 0.5;

  animation: ripple 2s infinite;
}

/* respiração */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}

/* expansão tipo radar */
@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.color-purple-special {
  color: #a855f7;
  position: relative;
  text-decoration: underline;
  text-decoration-style: wavy;
  text-underline-offset: 6px;
  text-decoration-color: #a855f740;
}

.button-primary-oai {
  background: linear-gradient(135deg, rgb(168, 85, 247), rgb(168, 85, 247));
  color: rgb(13, 13, 23);
  font-family: Outfit, Outfit, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.25);
  }

  50% {
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.45);
  }
}

.button-secondary-oai {
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: rgb(168, 85, 247);
  background: rgba(168, 85, 247, 0.08);
  font-family: Outfit, Outfit, sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.75rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
  border-radius: 0.75rem;
  gap: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.col2-hero-oai {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.frame-animation-col2-oia {
  border-radius: 1rem;
  padding: 0.35rem; /* espessura da borda */
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.25),
    rgba(147, 51, 234, 0.08)
  );
  width: 100%;
  max-width: 448px !important;
}

.frame-animation-col2-oia .frame-content {
  background: #1a1a2e;
  min-height: 568px;

  border-radius: 0.75rem;
  padding: 1.25rem;

  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.header-frame-animation {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(168, 85, 247, 0.12);
}

.profile-header-frame {
  background: linear-gradient(135deg, rgb(168, 85, 247), rgb(147, 51, 234));
  width: 40px;
  height: 40px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-frame-animation {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}

.content-frame-animation > div {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.content-frame-animation > div.show {
  opacity: 1;
  transform: translateY(0);
}

.dialog-right {
  margin: 0 0 0 auto;
  right: 0;

  background: rgb(26, 46, 34);
  color: rgb(232, 245, 238);

  font-size: 0.875rem;
  font-family: Outfit;
  line-height: 1.25rem;

  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  padding-right: 1rem;

  border-radius: 1rem;
  max-width: 310px !important;
  position: relative;
  /*animation: slide-up 0.8s ease-out forwards;*/
}

.dialog-right::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: 16px;
  width: 12px;
  height: 12px;
  background: inherit;
  transform: rotate(45deg);
  border-radius: 2px;
}

.dialog-left {
  margin: 0 auto 0 0;
  right: 0;
  background: #1e322c;
  color: rgb(200, 232, 216);
  border: 1px solid rgba(0, 255, 136, 0.12);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-family: Outfit;

  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 1rem;
  max-width: 310px !important;
  position: relative;
  /*animation: slide-up 0.8s ease-out forwards;*/
}

.dialog-left::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 16px;
  width: 12px;
  height: 12px;
  background: inherit;
  transform: rotate(45deg);
  border-radius: 2px;
}

@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-section-oai {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  max-width: 1240px;
}

.box-grid-hero {
  background: rgba(168, 85, 247, 0.06);
  border: 1px solid rgba(168, 85, 247, 0.12);
  text-align: center;
  font-family: Outfit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  gap: 8px;
  border-radius: 0.75rem;
}

.section-quem-usa-recomenda {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 4rem 0 0 0;
  border-top: 1px solid rgba(168, 85, 247, 0.08);
  width: 100%;
}

.content-quem-usa-recomenda {
  width: 100%;
  max-width: 1240px;
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 100%;
}

.grid-7 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  width: 100%;
}

.box-grid-recomenda {
  background: rgba(168, 85, 247, 0.04);
  padding: 1rem;
  opacity: 0.7;
  border-radius: 0.5rem;
  font-family: Outfit;
	display: flex;
	justify-content: center;
	align-items: center
}

.box-grid-recomenda:hover {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.profile-box {
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  font-family: Outfit;
  font-weight: 900;
  font-size: 1.125rem;
  color: #fff;
  line-height: 1.75rem;
  margin-bottom: 8px;
}

.profile-box-1 {
  background: linear-gradient(135deg, rgb(255, 107, 107), rgb(255, 135, 135));
}

/*
======================
PROBLEMA
======================
*/

.section-standart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  padding: 96px 0;
  width: 100%;
}

.section-bg-g {
  background-color: #080c0a;
}

.section-bg-p {
  background: radial-gradient(
    60% 40%,
    rgba(168, 85, 247, 0.1) 0%,
    transparent 100%
  );
}

.container-section-standart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 64px;
  width: 100%;
  max-width: 1240px;
}

.header-standart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

.box-grid-problem-1,
.box-grid-problem-3 {
  background: linear-gradient(rgba(255, 68, 68, 0.06), transparent);
  border: 1px solid rgba(255, 68, 68, 0.12);
  transition: 0.3s;
  font-family: Outfit, Outfit, sans-serif;
  padding: 2rem;
  border-radius: 1rem;
}

.box-grid-problem-2 {
  background: linear-gradient(rgba(255, 170, 0, 0.06), transparent);
  border: 1px solid rgba(255, 170, 0, 0.12);
  transition: 0.3s;
  font-family: Outfit, Outfit, sans-serif;
  padding: 2rem;
  border-radius: 1rem;
}

.box-grid-problem-1 .box-icon-problem,
.box-grid-problem-3 .box-icon-problem {
  background: rgba(255, 68, 68, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
}

.box-grid-problem-2 .box-icon-problem {
  background: rgba(255, 170, 0, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
}

/*
======================
PASSOS
======================
*/

.box-grid-passos {
  background: rgb(17, 26, 21);
  border: 1px solid rgba(16, 185, 129, 0.12);
  border-radius: 1rem;
  overflow: hidden;
}

.header-box-passos {
  background: rgba(16, 185, 129, 0.08);
  border-bottom: 1px solid rgba(16, 185, 129, 0.12);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.padding-24{
	padding: 0 24px 24px 24px
}

.number-passos {
  background: rgba(16, 185, 129, 0.15);
  color: rgb(16, 185, 129);
  font-family: Outfit, Outfit, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
}

.content-passos {
  /*padding: 1.5rem;*/
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: Outfit;
}

.max-1024 {
  max-width: 1024px;
}

/*
======================
SOLUÇÃO
======================
*/

.max-672 {
  max-width: 672px;
  text-align: center;
}

.box-grid-solucao {
  background: linear-gradient(rgb(26, 26, 46), rgb(15, 21, 32));
  border: 1px solid rgba(168, 85, 247, 0.12);
  font-family: Outfit, Outfit, sans-serif;
  padding: 1.75rem;
  border-radius: 1rem;
}

.solucao-box-icon {
  background: rgba(168, 85, 247, 0.12);
  border-radius: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
}

.text-align-center {
  text-align: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.box-1-porque {
  background: rgb(26, 17, 17);
  border: 1px solid rgba(255, 68, 68, 0.15);
  font-family: Outfit, Outfit, sans-serif;
  padding: 2rem;
  border-radius: 1rem;
}

.box-2-porque {
  background: linear-gradient(rgba(0, 255, 136, 0.08), rgb(17, 26, 21));
  border: 1px solid rgba(0, 255, 136, 0.2);
  font-family: Outfit, Outfit, sans-serif;
  padding: 2rem;
  border-radius: 1rem;
}

.max-896 {
  max-width: 896px;
  width: 100%;
}

/*
======================
VEJA AO VIVO
======================
*/

.frame-ao-vivo-oai {
  background: rgb(26, 26, 46);
  border: 1px solid rgba(168, 85, 247, 0.14);
  font-family: Outfit, Outfit, sans-serif;
  border-radius: 1rem;
  width: 100%;
  max-width: 510px;
  overflow: hidden;
}

.header-frame-animation-ao-vivo {
  background: rgb(15, 21, 32);
  border-bottom: 1px solid rgba(168, 85, 247, 0.1);
  font-family: Outfit, Outfit, sans-serif;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1.25rem;
  gap: 0.75rem;
  padding-right: 1.25rem;
  display: flex;
  align-items: center;
}

.content-frame-animation-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  min-height: 640px;
  padding: 1.25rem;
}

.content-frame-animation div,
.content-frame-animation-2 div {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.content-frame-animation .show,
.content-frame-animation-2 .show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.keyboard-frame {
  border-top: 1px solid rgba(168, 85, 247, 0.08);
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  gap: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-self: center;
}

.typing {
  background: rgba(168, 85, 247, 0.07);
  border: 1px solid rgba(168, 85, 247, 0.12);
  color: rgb(143, 85, 151);
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 9999px;
  flex: 1 1 0%;
}

.typing span {
  opacity: 1;
  animation: blinkOpacity 1s infinite;
}

.send {
  background: rgb(168, 85, 247);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 1000px;
}

@keyframes blinkOpacity {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*
======================
RESULTADOS
======================
*/

.box-grid-resultados {
  background: rgb(17, 26, 21);
  border: 1px solid rgba(0, 255, 136, 0.1);
  font-family: Outfit, Outfit, sans-serif;
  padding: 1.75rem;
  border-radius: 1rem;
}

.line-0-255-136 {
  width: 100%;
  height: 1px;
  opacity: 0.1;
  background: rgb(0, 255, 136);
}

.profile-resultados {
  background: rgba(0, 255, 136, 0.15);
  color: rgb(0, 255, 136);
  font-family: Outfit, Outfit, sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.25rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
}

.box-mini-results {
  background: rgba(0, 255, 136, 0.08);
  padding-top: 0.375rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-bottom: 0.375rem;
  border-radius: 0.5rem;
}

/*
======================
SEM PROBLMEAS
======================
*/

.box-sem-problemas {
  background: rgb(17, 26, 21);
  border: 1px solid rgba(0, 255, 136, 0.08);
  font-family: Outfit, Outfit, sans-serif;
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
}

.box-icon-sem-desculpas {
  background: rgba(0, 255, 136, 0.1);
  border-radius: 0.75rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*
======================
CTA SPECIAL
======================
*/
.section-bg-special {
  position: relative;
  background-color: #080c0a;
  overflow: hidden;
}

.section-bg-special::after {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    60% 40%,
    rgba(85, 247, 93, 0.15) 0%,
    transparent 100%
  );

  pointer-events: none;
}

.badge-green-oai {
  background: rgba(0, 255, 136, 0.1);
  color: rgb(0, 255, 136);
  border: 1px solid rgba(0, 255, 136, 0.15);
  font-family: Outfit, Outfit, sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  line-height: 1.25rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 9999px;
  gap: 0.5rem;
  display: flex;
  align-items: center;
}

.button-primary-oai-cta{
  background: linear-gradient(135deg, rgb(91, 182, 83), rgb(90, 247, 85));
  color: rgb(13, 23, 15);
  font-family: Outfit, Outfit, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
  border-radius: 75rem;
	border: none;
	outline: none;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  animation: pulse-glow-green 3s ease-in-out infinite;
}


.wpcf7-submit{
	width: 100%;
  background: linear-gradient(135deg, rgb(91, 182, 83), rgb(90, 247, 85));
  color: rgb(13, 23, 15);
  font-family: Outfit, Outfit, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
  border-radius: 75rem;
	border: none;
	outline: none;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  animation: pulse-glow-green 3s ease-in-out infinite;
}


@keyframes pulse-glow-green {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(85, 247, 99, 0.25);
  }

  50% {
    box-shadow: 0 0 40px rgba(85, 247, 126, 0.45);
  }
}

.font-size30{
	font-size: 30px;
	font-weight: bold;
	font-family: Outfit;
	color: #fff
}

.font-size24{
	font-size: 24px;
	color: #ffffff60;
	font-family: Outfit;
}

/* ==================================================================== */

/* form-section-crie-seu-agente */

#form-section-crie-seu-agente{
  scroll-margin-top: 80px; 
}

@media (max-width: 600px)
	#form-section-crie-seu-agente[
		scroll-margin-top: 40px; 
	]

.wpcf7{
    background: #1a1a24;
    border-radius: 32px;
    border: solid 1px rgba(168,85,247,.2);
    box-shadow: 0 0 60px rgba(124, 58, 237, .3), 0 0 120px rgba(124, 58, 237, .1);
    padding: 40px;
}

.hidden-fields-container{
    opacity: 0;
}

.wpcf7 .font-size30,
.wpcf7 .font-size14{
    text-align: center !important;
    display: flex;
    margin: 0 auto;
}

.wpcf7 p{
    margin-bottom: 16px !important;
	color: #fff;
}

.wpcf7 label{
	color: #fff
}

.wpcf7{
	max-width: 540px !important;
	width: 100%
}

.font-size14{
	color: #ffffff80;
	font-size: 14px;
}
.nome-completo,
.nome-empresa,
.whatsapp{
    padding: 12px 16px;
    background: transparent;
    color: #ffffff80;
    font-size: 20px;
    border-radius: 12px;
    border: solid 1px #fff;
    width: calc(100% - 32px);
    margin-top: 8px;
}

.select-segmento{
    padding: 12px 16px;
    background: transparent;
    color: #ffffff70;
    font-size: 20px;
    border-radius: 12px;
    border: solid 1px #fff;
    width: 100%;
    margin-top: 8px;

}

.select-segmento option{
    color: #000;
}

.screen-reader-response{
    display: none;
}

.wpcf7-not-valid-tip{
    font-size: 14px;
    color: red;
    margin-bottom: 20px;
}

.wpcf7-form-control-wrap{
    margin-bottom: 16px !important
}
/* fim */

.wpcf7-response-output{
    border: none !important;
    padding: 10px 20px;
    border-radius: 12px;
    opacity: .5;
}

/* ==================================================================== */

/*
======================
FOOTER
======================
*/

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #080c0a;
  border-top: 1px solid rgba(0, 255, 136, 0.06);
  padding-top: 3rem;
  padding-bottom: 3rem;
  width: 100%;
}

footer div {
  max-width: 1240px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1000px) {
  footer div {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
  }
}

footer img {
  max-width: 60px;
}

/*
======================
MOBILE
======================
*/

@media (max-width: 1000px) {
  .content-hero-oai,
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .grid-4.grid-2-onmobile {
    grid-template-columns: 1fr 1fr !important;
  }

  .grid-6.grid-2-onmobile {
    grid-template-columns: 1fr 1fr !important;
  }
	
	
  .grid-7.grid-2-onmobile {
    grid-template-columns: 1fr 1fr !important;
  }

  .content-hero-oai {
    gap: 48px;
  }

  .grid-4.grid-2-onmobile .font-size-30 {
    font-size: 24px;
  }
  section {
    padding-left: 24px !important;
    padding-right: 24px !important;
    max-width: calc(100% - 24px - 24px);
  }

  .font-size-48 {
    text-align: center;
  }
}
